blob: 7c8f1fd1732add893a90f360c612d469399a2637 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { SettingsSection } from "./settings-section"
export default function () {
return (
<div data-page="workspace-[id]">
<div data-slot="sections">
<SettingsSection />
</div>
</div>
)
}
|